home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / program / jfklib.zip / MDIDEMO.HPP < prev    next >
C/C++ Source or Header  |  1991-05-11  |  548b  |  36 lines

  1. /*
  2.     MDIDEMO.HPP - (C) 1991 by Joachim Kainz 'On a mission from Bhudda'
  3. */
  4.     #if !defined (__HELLO_HPP)
  5.  
  6.     #define __HELLO_HPP 1
  7.  
  8.     #include <mdi.hpp>
  9.     #include "mdidemo.h"
  10.  
  11.     class MDIDEMO : public MDI
  12.     {
  13.       protected:
  14.         METHOD WMCommand (WORD wID, WORD wMsg, HWND hCtl);
  15.  
  16.       public:
  17.         MDIDEMO (int nShow = SW_NORMAL);
  18.     };
  19.  
  20.     class DEMOCHILD : public MDICHILD
  21.     {
  22.       protected:
  23.         static WORD wCount;
  24.  
  25.         PSTR    pTitle;
  26.         HFONT    hFont;
  27.  
  28.         METHOD WMPaint   ();
  29.         METHOD WMDestroy ();
  30.  
  31.       public:
  32.         DEMOCHILD ();
  33.  
  34.     };
  35.     #endif
  36.